home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxdcconv.c < prev    next >
C/C++ Source or Header  |  1997-02-19  |  5KB  |  147 lines

  1. /* Copyright (C) 1992, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxdcconv.c */
  20. /* Conversion between device color spaces for Ghostscript */
  21. #include "gx.h"
  22. #include "gsdcolor.h"            /* for gxcmap.h */
  23. #include "gxdcconv.h"            /* interface */
  24. #include "gxdevice.h"            /* for gxcmap.h */
  25. #include "gxcmap.h"
  26. #include "gxfarith.h"
  27. #include "gxlum.h"
  28. #include "gxistate.h"
  29.  
  30. /*
  31.  * The CMYK to RGB algorithms specified by Adobe are, e.g.,
  32.  *    R = 1.0 - min(1.0, C + K)
  33.  *    C = max(0.0, min(1.0, 1 - R - UCR))
  34.  * but we get much better results with
  35.  *    R = (1.0 - C) * (1.0 - K)
  36.  *    C = max(0.0, min(1.0, 1 - R / (1 - UCR)))
  37.  * For utmost compatibility, we offer the Adobe algorithms as an option:
  38.  */
  39. /*#define USE_ADOBE_CMYK_RGB*/
  40.  
  41. /* ------ Color space conversion ------ */
  42.  
  43. /* Only 4 of the 6 conversions are implemented here; */
  44. /* the other 2 (Gray to RGB/CMYK) are trivial. */
  45.  
  46. /* Convert RGB to Gray. */
  47. frac
  48. color_rgb_to_gray(frac r, frac g, frac b, const gs_imager_state *pis)
  49. {    return (r * (unsigned long)lum_red_weight +
  50.         g * (unsigned long)lum_green_weight +
  51.         b * (unsigned long)lum_blue_weight +
  52.         (lum_all_weights / 2))
  53.         / lum_all_weights;
  54. }
  55.  
  56. /* Convert RGB to CMYK. */
  57. /* Note that this involves black generation and undercolor removal. */
  58. void
  59. color_rgb_to_cmyk(frac r, frac g, frac b, const gs_imager_state *pis,
  60.   frac cmyk[4])
  61. {    frac c = frac_1 - r, m = frac_1 - g, y = frac_1 - b;
  62.     frac k = (c < m ? min(c, y) : min(m, y));
  63.     /* The default UCR and BG functions are pretty arbitrary.... */
  64.     frac bg =
  65.         (pis->black_generation == NULL ? frac_0 :
  66.          gx_map_color_frac(pis, k, black_generation));
  67.     signed_frac ucr =
  68.         (pis->undercolor_removal == NULL ? frac_0 :
  69.          gx_map_color_frac(pis, k, undercolor_removal));
  70.     if ( ucr == frac_1 )
  71.         cmyk[0] = cmyk[1] = cmyk[2] = 0;
  72.     else
  73.     {
  74. #ifdef USE_ADOBE_CMYK_RGB
  75.         /* C = max(0.0, min(1.0, 1 - R - UCR)), etc. */
  76.         signed_frac not_ucr = (ucr < 0 ? frac_1 + ucr : frac_1);
  77.         cmyk[0] = (c < ucr ? frac_0 : c > not_ucr ? frac_1 : c - ucr);
  78.         cmyk[1] = (m < ucr ? frac_0 : m > not_ucr ? frac_1 : m - ucr);
  79.         cmyk[2] = (y < ucr ? frac_0 : y > not_ucr ? frac_1 : y - ucr);
  80. #else
  81.         /* C = max(0.0, min(1.0, 1 - R / (1 - UCR))), etc. */
  82.         float denom = frac2float(frac_1 - ucr);    /* unscaled */
  83.         float v;
  84.         v = (float)frac_1 - r / denom;    /* unscaled */
  85.         cmyk[0] =
  86.           (is_fneg(v) ? frac_0 : v >= (float)frac_1 ? frac_1 : (frac)v);
  87.         v = (float)frac_1 - g / denom;    /* unscaled */
  88.         cmyk[1] =
  89.           (is_fneg(v) ? frac_0 : v >= (float)frac_1 ? frac_1 : (frac)v);
  90.         v = (float)frac_1 - b / denom;    /* unscaled */
  91.         cmyk[2] =
  92.           (is_fneg(v) ? frac_0 : v >= (float)frac_1 ? frac_1 : (frac)v);
  93. #endif
  94.     }
  95.     cmyk[3] = bg;
  96.     if_debug7('c', "[c]RGB 0x%x,0x%x,0x%x -> CMYK 0x%x,0x%x,0x%x,0x%x\n",
  97.           r, g, b, cmyk[0], cmyk[1], cmyk[2], cmyk[3]);
  98. }
  99.  
  100. /* Convert CMYK to Gray. */
  101. frac
  102. color_cmyk_to_gray(frac c, frac m, frac y, frac k, const gs_imager_state *pis)
  103. {    frac not_gray = color_rgb_to_gray(c, m, y, pis);
  104.     return (not_gray > frac_1 - k ?        /* gray + k > 1.0 */
  105.         frac_0 : frac_1 - (not_gray + k));
  106. }
  107.  
  108. /* Convert CMYK to RGB. */
  109. void
  110. color_cmyk_to_rgb(frac c, frac m, frac y, frac k, const gs_imager_state *pis,
  111.   frac rgb[3])
  112. {    switch ( k )
  113.     {
  114.     case frac_0:
  115.         rgb[0] = frac_1 - c;
  116.         rgb[1] = frac_1 - m;
  117.         rgb[2] = frac_1 - y;
  118.         break;
  119.     case frac_1:
  120.         rgb[0] = rgb[1] = rgb[2] = frac_0;
  121.         break;
  122.     default:
  123.     {
  124. #ifdef USE_ADOBE_CMYK_RGB
  125.         /* R = 1.0 - min(1.0, C + K), etc. */
  126.         frac not_k = frac_1 - k;
  127.                 rgb[0] = (c > not_k ? frac_0 : not_k - c);
  128.                 rgb[1] = (m > not_k ? frac_0 : not_k - m);
  129.                 rgb[2] = (y > not_k ? frac_0 : not_k - y);
  130. #else
  131.         /* R = (1.0 - C) * (1.0 - K), etc. */
  132.         ulong not_k = frac_1 - k;
  133.         /* Compute not_k * (frac_1 - v) / frac_1 efficiently. */
  134.         ulong prod;
  135. #define deduct_black(v)\
  136.   (prod = (frac_1 - (v)) * not_k, frac_1_quo(prod))
  137.         rgb[0] = deduct_black(c);
  138.         rgb[1] = deduct_black(m);
  139.         rgb[2] = deduct_black(y);
  140. #undef deduct_black
  141. #endif
  142.     }
  143.     }
  144.     if_debug7('c', "[c]CMYK 0x%x,0x%x,0x%x,0x%x -> RGB 0x%x,0x%x,0x%x\n",
  145.           c, m, y, k, rgb[0], rgb[1], rgb[2]);
  146. }
  147.